home *** CD-ROM | disk | FTP | other *** search
- Q33362 Internal Compiler Error Grammar.c 1.29, Line 108
- C Compiler
- 5.10 | 5.10
- MS-DOS | OS/2
-
- Summary:
- The code below will produce the following error:
-
- test.c(16) : fatal error C1001: Internal Compiler Error
- (compiler file '@(#)grammar.c:1.29', line 108)
- Contact Microsoft Technical Support
-
- The following is the code:
-
- typedef struct myplotpoint{
- int x;
- int y;
- } PLOT_POINT;
-
- PLOT_POINT move_character_cursor();
-
- PLOT_POINT special_character(ascii,pt)
- int ascii;
- PLOT_POINT pt;
- {
- switch(ascii)
- {
- case 8:
- return(move_character_cursor(pt,-1.0,0.0));
-
- default:
- break;
- }
- return(pt);
- }
-
- More Information:
- This error can be avoided by changing the line
-
- return(move_character_cursor(pt,-1.0,0.0));
-
- to the following two lines:
-
- pt=move_character_cursor(pt,-1.0,0.0);
- return(pt);
-
- Microsoft has confirmed this to be a problem in Version 5.10 of the
- C compiler. We are researching this problem and will post new
- information as it becomes available.
-
-
-
- Keywords: buglist5.10 qfbv
- Updated 88/07/29 14:28
-